home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / SaveRenderedAs_ILBM.ifx < prev    next >
Text File  |  1996-03-02  |  1KB  |  51 lines

  1. /*
  2.  * SaveBufferAs.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Save main buffer.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number (?)
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. framenum = Word(Arg(1),1)
  22. mainname = Word(Arg(1),2)
  23. swapname = Word(Arg(1),3)
  24. seqnum   = Word(Arg(1),4)
  25. framemax = Word(Arg(1),5)
  26.  
  27. path = GETCLIP('Autofx_SaveRenderAsILBM_Path')
  28. ext  = GETCLIP('Autofx_SaveRenderAsILBM_Ext')
  29.  
  30. i = POS('*', ext)
  31. IF i > 0 THEN ext = LEFT(ext,i-1) || RIGHT('00000'||framenum,5) || SUBSTR(ext,i+1)
  32.  
  33. outfile = mainname||ext
  34. IF path ~= "" THEN DO
  35.  
  36.    i = LASTPOS('/',mainname)
  37.    IF i = 0 THEN i = LASTPOS(':',mainname)
  38.  
  39.    IF i = 0 THEN
  40.       file = mainname
  41.    ELSE
  42.       file = SUBSTR(mainname,i+1)
  43.  
  44.    IF RIGHT(path,1) ~= ':' THEN path = path||'/'
  45.    outfile = path||file||ext
  46.  
  47.    END
  48.  
  49. SaveRenderedAs ILBM '"'outfile'"'
  50. EXIT rc
  51.